projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b512150
)
Update Android port
author
Po Lu
<luangruo@yahoo.com>
Thu, 20 Jul 2023 11:49:47 +0000
(19:49 +0800)
committer
Po Lu
<luangruo@yahoo.com>
Thu, 20 Jul 2023 11:49:47 +0000
(19:49 +0800)
* src/android.c (struct android_event_queue): Don't make
unnecessarily volatile.
src/android.c
patch
|
blob
|
history
diff --git
a/src/android.c
b/src/android.c
index f2e5e75d35e0edee74b4ac08b604a5e3ea315122..1662160bdd9b040c7f2a7df474bbe8d211f72546 100644
(file)
--- a/
src/android.c
+++ b/
src/android.c
@@
-306,7
+306,7
@@
struct android_event_queue
/* The number of events in the queue. If this is greater than 1024,
writing will block. */
-
volatile
int num_events;
+ int num_events;
/* Circular queue of events. */
struct android_event_container events;